HandleWheel Property (ComboBoxBase<T>)
In This Topic
Gets or sets a value that determines whether the user can use the mouse wheel to change the currently selected item.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(True)>
Public Property HandleWheel As System.Boolean
'Usage
Dim instance As ComboBoxBase(Of T)
Dim value As System.Boolean
instance.HandleWheel = value
value = instance.HandleWheel
[System.ComponentModel.DefaultValue(true)]
public System.bool HandleWheel {get; set;}
public read-write property HandleWheel: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set HandleWheel : System.boolean
[System.ComponentModel.DefaultValue(true)]
public: __property System.bool get_HandleWheel();
public: __property void set_HandleWheel(
System.bool value
);
[System.ComponentModel.DefaultValue(true)]
public:
property System.bool HandleWheel {
System.bool get();
void set ( System.bool value);
}
See Also